home *** CD-ROM | disk | FTP | other *** search
/ MacHack 1999 / MacHack 1999.toast / The Hacks / NetPokerForMacOSX_Server / HoldEmHigh / HoldEmHighHand.h < prev    next >
Encoding:
Text File  |  1999-06-24  |  184 b   |  12 lines

  1. #import <AppKit/AppKit.h>
  2.  
  3. @interface HoldEmHighHand:NSObject
  4. {
  5.     NSMutableArray *cards;   // 5 of them
  6. }
  7.  
  8.  
  9. - (NSArray *)cards;
  10. - (void)setCard:(Card *)card atIndex:(int)index;
  11.  
  12. @end